home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue57 / DragDrop / ExeDrag.dpr < prev    next >
Encoding:
Text File  |  2000-03-23  |  240 b   |  15 lines

  1. program ExeDrag;
  2.  
  3. uses
  4.   Forms,
  5.   ExeFormU in 'ExeFormU.pas' {ExeForm},
  6.   DLLDragObject in 'DLLDragObject.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TExeForm, ExeForm);
  13.   Application.Run;
  14. end.
  15.